Standardize CI workflows with 'make' and 'uv' integration#187
Merged
DanielAvdar merged 10 commits intomainfrom Jun 6, 2025
Merged
Standardize CI workflows with 'make' and 'uv' integration#187DanielAvdar merged 10 commits intomainfrom
DanielAvdar merged 10 commits intomainfrom
Conversation
Replaces the use of `uv sync` with `make` across multiple GitHub Actions workflows to standardize the setup process. This simplifies and unifies the build steps for better maintainability and consistency across projects. Signed-off-by: DanielAvdar <66269169+DanielAvdar@users.noreply.github.com>
…agement Signed-off-by: DanielAvdar <66269169+DanielAvdar@users.noreply.github.com>
Bumps [hypothesis](https://github.com/HypothesisWorks/hypothesis) from 6.135.0 to 6.135.1. - [Release notes](https://github.com/HypothesisWorks/hypothesis/releases) - [Commits](HypothesisWorks/hypothesis@hypothesis-python-6.135.0...hypothesis-python-6.135.1) --- updated-dependencies: - dependency-name: hypothesis dependency-version: 6.135.1 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.11.12 to 0.11.13. - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](astral-sh/ruff@0.11.12...0.11.13) --- updated-dependencies: - dependency-name: ruff dependency-version: 0.11.13 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Updated CI workflows to use `uv` for consistent dependency management and simplified commands, replacing `poetry` where applicable. Removed `poetry.lock` as it's no longer relevant with the transition to `uv`. Improved testing and documentation steps for better compatibility across platforms and Python versions. Signed-off-by: DanielAvdar <66269169+DanielAvdar@users.noreply.github.com>
Replaces the use of `uv sync` with `make` across multiple GitHub Actions workflows to standardize the setup process. This simplifies and unifies the build steps for better maintainability and consistency across projects. Signed-off-by: DanielAvdar <66269169+DanielAvdar@users.noreply.github.com>
…agement Signed-off-by: DanielAvdar <66269169+DanielAvdar@users.noreply.github.com>
Updated CI workflows to use `uv` for consistent dependency management and simplified commands, replacing `poetry` where applicable. Removed `poetry.lock` as it's no longer relevant with the transition to `uv`. Improved testing and documentation steps for better compatibility across platforms and Python versions. Signed-off-by: DanielAvdar <66269169+DanielAvdar@users.noreply.github.com>
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. Additional details and impacted files@@ Coverage Diff @@
## main #187 +/- ##
=======================================
Coverage 99.69% 99.69%
=======================================
Files 13 13
Lines 333 333
=======================================
Hits 332 332
Misses 1 1 ☔ View full report in Codecov by Sentry. |
Signed-off-by: DanielAvdar <66269169+DanielAvdar@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Replace 'uv sync' with 'make' in GitHub Actions workflows to unify the build process. Refactor Python setup and dependency management to utilize 'uv', enhancing maintainability and consistency across projects.